The Files in this directory have been modified
to compile with VC++ 2005 Express.

function heads have been changed from this:

void BF_ofb64_encrypt(in, out, length, schedule, ivec, num)
unsigned char *in;
unsigned char *out;
long length;
BF_KEY *schedule;
unsigned char *ivec;
int *num;

to this:

void BF_ofb64_encrypt(	unsigned char *in,
						unsigned char *out,
						long length,
						BF_KEY * schedule,
						unsigned char * ivec,
						int * num )

